home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000130_news@columbia.edu_Sun Dec 17 16:48:57 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27636
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Sun, 17 Dec 1995 11:49:07 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id LAA14294 for kermit.misc@watsun; Sun, 17 Dec 1995 11:49:03 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Help needed with using scripts to send escape character
  8. Date: 17 Dec 1995 16:48:57 GMT
  9. Organization: Columbia University
  10. Lines: 60
  11. Message-Id: <4b1hlp$dtr@apakabar.cc.columbia.edu>
  12. References: <4avfof$cv3@access1.digex.net>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <4avfof$cv3@access1.digex.net>,
  17. R. D. Davis <rdd@access1.digex.net> wrote:
  18. : While setting up a utility to automate file transfers, using c-kermit
  19. : (UNIX version) I ran into a problem: I couldn't figure how to automate
  20. : the sending of an escape sequence.  More specifically, after puting
  21. : the remote kermit into server mode, I can't figure out how to avoid
  22. : manually entering an escape sequence ( ctrl-\ c ) so that the script
  23. : running from the other kermit could begin sending commands to the
  24. : server.
  25.  
  26. I'd be tempted to add this question and answer to our FAQ if it were not
  27. clearly explained in the manual, "Using C-Kermit", chapters 11-13 on
  28. script programming, particularly pages 276-277.  Here's a hint -- if
  29. you're writing an automated procedure that runs by itself, don't put the
  30. CONNECT command in it.  Use the OUTPUT and INPUT commands instead.  (And
  31. if it's a TCP/IP connection, use the SET HOST command instead of the
  32. TELNET command.)
  33.  
  34.   Time out for a commercial message (not aimed personally at the
  35.   poster or any other individual).  The Kermit Project is funded ONLY
  36.   by the income it generates, primarily from sales of the printed
  37.   manuals.  Kermit's script language is like any other programming
  38.   language -- C, Fortran, Pascal, PL/I, Visual Basic, etc; you
  39.   wouldn't think of learning how to program in any of those languages
  40.   without a manual.
  41.  
  42. Thanks to the phenomenal growth of the Internet and the easy accessibility
  43. of Kermit software to everyone in the world, more people are using our
  44. software than ever before, and fewer than ever are doing their part to
  45. support the Kermit Project -- and to help themselves get the most out of
  46. the software -- by purchasing the manuals.  Our help-desk workload is
  47. skyrocketing while our income takes a nosedive.  We'd like to continue our
  48. work, but this trend is ominous.
  49.  
  50. For information about the Kermit software manuals and how to get them,
  51. see our Web page:
  52.  
  53.   http://www.columbia.edu/kermit/
  54.  
  55. and more specifically:
  56.  
  57.   http://www.columbia.edu/kermit/manuals.html
  58.  
  59. And if you don't have a Web browser:
  60.  
  61.   ftp://kermit.columbia.edu/kermit/e/booklist.doc
  62.  
  63. : Also, I noticed that help shows that there's a "remote kermit command"
  64. : command, but I got an error message indicating that this wasn't
  65. : implemented.  
  66. It's implemented in the C-Kermit and MS-DOS Kermit clients, but it also
  67. needs to be implemented in the Kermit server on the other end.  To date,
  68. the only Kermit program that implements the server end of "remote kermit"
  69. is IBM Mainframe Kermit.  You can generally accomplish the same things
  70. using other commands, like REMOTE SET and other client/server-oriented
  71. commands, also documented in the manual.
  72.  
  73. - Frank